home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Feb / di9802kw / WPLoad.dpr < prev    next >
Text File  |  1997-08-21  |  338b  |  20 lines

  1. program WPLoad;
  2.  
  3. {
  4.   Allow JPEG and GIF files to be loaded into the WebPics database.
  5.  
  6.   Written by Keith Wood, 21 August, 1997.
  7. }
  8.  
  9. uses
  10.   Forms,
  11.   WPLoad1 in 'WPLoad1.pas' {frmLoadWebPics};
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.Initialize;
  17.   Application.CreateForm(TfrmLoadWebPics, frmLoadWebPics);
  18.   Application.Run;
  19. end.
  20.